home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2001 November / november_2001.iso / Browsers / Netscape 6.1 / browser.xpi / bin / chrome / comm.jar / content / wallet / pref-wallet.xul < prev    next >
Encoding:
Extensible Markup Language  |  2001-04-11  |  3.5 KB  |  102 lines

  1. <?xml version="1.0"?> 
  2.  
  3. <!--
  4.    The contents of this file are subject to the Netscape Public
  5.    License Version 1.1 (the "License"); you may not use this file
  6.    except in compliance with the License. You may obtain a copy of
  7.    the License at http://www.mozilla.org/NPL/
  8.     
  9.    implied. See the License for the specific language governing
  10.    rights and limitations under the License.
  11.     
  12.    The Original Code is Mozilla Communicator client code, released
  13.    March 31, 1998.
  14.    
  15.    The Initial Developer of the Original Code is Netscape
  16.    Communications Corporation. Portions created by Netscape are
  17.    Copyright (C) 1998-1999 Netscape Communications Corporation. All
  18.    Rights Reserved.
  19.    
  20.    Contributor(s): 
  21.   -->
  22. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  23. <?xml-stylesheet href="chrome://communicator/skin/dialogOverlay.css" type="text/css"?>
  24.  
  25. <!DOCTYPE window [
  26. <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  27. %brandDTD;
  28. <!ENTITY % prefWalletDTD SYSTEM "chrome://wallet/locale/pref-wallet.dtd" >
  29. %prefWalletDTD;
  30. ]>
  31. <window xmlns:html="http://www.w3.org/1999/xhtml"
  32.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  33.         class="color-dialog"
  34.         orient="vertical"
  35.         onload="parent.initPanel('chrome://wallet/content/pref-wallet.xul');">
  36.  
  37.   <script type="application/x-javascript" src="chrome://wallet/content/walletOverlay.js"/>
  38.  
  39.   <script type="application/x-javascript">
  40.   <![CDATA[
  41.     var _elementIDs = ["walletCaptureForms"];
  42.   ]]>
  43.   </script>
  44.           
  45.   <script type="application/x-javascript">
  46.   <![CDATA[
  47.  
  48.     function viewWalletSites()
  49.     {
  50.       window.openDialog("chrome://communicator/content/wallet/SignonViewer.xul",
  51.                         "","modal=yes,chrome,resizable=no", "W");
  52.     }
  53.  
  54.   ]]>
  55.   </script>
  56.         
  57.   <box class="box-smallheader" title="&lHeader;"/>
  58.  
  59.   <titledbox orient="vertical">
  60.     <label value="&walletHeader.label;"/>
  61.     <html>&walletDescription.label;</html>
  62. <!--
  63.     <box autostretch="never">
  64.       <text class="label"
  65.             for="walletServer"
  66.             value="&walletServer.label;"
  67.             accesskey="&walletServer.accesskey;"/>
  68.       <textbox id="walletServer"
  69.                  flex="1"
  70.                  pref="true"
  71.                  preftype="string"
  72.                  prefstring="wallet.Server"
  73.                  prefattribute="value"/>
  74.     </box>
  75. -->
  76.     <box autostretch="never">
  77.       <checkbox id="walletCaptureForms"
  78.               label="&walletEnabled.label;"
  79.               accesskey="&walletEnabled.accesskey;"
  80.               pref="true"
  81.               preftype="bool"
  82.               prefstring="wallet.captureForms"
  83.               prefattribute="checked"/>
  84.     </box>
  85.     <box autostretch="never" halign="right">
  86.       <button class="dialog"
  87.               label="&viewWallet.label;"
  88.               accesskey="&viewWallet.accesskey;" 
  89.               oncommand="formShow();"
  90.               id="viewFormButton" pref="true" preftype="bool"
  91.               prefstring="pref.advanced.form.disable_button.view_form" prefattribute="disabled"/>
  92.       <button class="dialog"
  93.               label="&viewWalletSites.label;"
  94.               accesskey="&viewWalletSites.accesskey;" 
  95.               oncommand="viewWalletSites();"
  96.               id="viewSiteButton" pref="true" preftype="bool"
  97.               prefstring="pref.advanced.form.disable_button.view_sites" prefattribute="disabled"/>
  98.     </box>
  99.   </titledbox>
  100.  
  101. </window>
  102.